regexp.thread.cap (field)
13 uses
regexp (current package)
exec.go#L34: cap []int
exec.go#L97: t.cap = t.cap[:ncap]
exec.go#L111: t.cap = make([]int, len(m.matchcap), cap(m.matchcap))
exec.go#L268: if longest && m.matched && len(t.cap) > 0 && m.matchcap[0] < t.cap[0] {
exec.go#L279: if len(t.cap) > 0 && (!longest || !m.matched || m.matchcap[1] < pos) {
exec.go#L280: t.cap[1] = pos
exec.go#L281: copy(m.matchcap, t.cap)
exec.go#L304: t = m.add(nextq, i.Out, nextPos, t.cap, nextCond, t)
exec.go#L367: if len(cap) > 0 && &t.cap[0] != &cap[0] {
exec.go#L368: copy(t.cap, cap)
regexp.go#L248: t.cap = make([]int, re.matchcap)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |